home *** CD-ROM | disk | FTP | other *** search
Wrap
/* * DO NOT EDIT. THIS FILE IS GENERATED FROM nsIAppShellService.idl */ #ifndef __gen_nsIAppShellService_h__ #define __gen_nsIAppShellService_h__ #ifndef __gen_nsISupports_h__ #include "nsISupports.h" #endif /* For IDL files that don't want to include root IDL files. */ #ifndef NS_NO_VTABLE #define NS_NO_VTABLE #endif class nsIXULWindow; /* forward declaration */ class nsIURI; /* forward declaration */ class nsIDOMWindowInternal; /* forward declaration */ class nsIAppShell; /* forward declaration */ struct JSContext; /* starting interface: nsIAppShellService */ #define NS_IAPPSHELLSERVICE_IID_STR "93a28ba2-7e22-11d9-9b6f-000a95d535fa" #define NS_IAPPSHELLSERVICE_IID \ {0x93a28ba2, 0x7e22, 0x11d9, \ { 0x9b, 0x6f, 0x00, 0x0a, 0x95, 0xd5, 0x35, 0xfa }} class NS_NO_VTABLE nsIAppShellService : public nsISupports { public: NS_DEFINE_STATIC_IID_ACCESSOR(NS_IAPPSHELLSERVICE_IID) /** * Create a window, which will be initially invisible. * @param aParent the parent window. Can be null. * @param aUrl the contents of the new window. * @param aChromeMask chrome flags affecting the kind of OS border * given to the window. see nsIBrowserWindow for * bit/flag definitions. * @param aCallbacks interface providing C++ hooks for window initialization * before the window is made visible. Can be null. * Deprecated. * @param aInitialWidth width, in pixels, of the window. Width of window * at creation. Can be overridden by the "width" * tag in the XUL. Set to NS_SIZETOCONTENT to force * the window to wrap to its contents. * @param aInitialHeight like aInitialWidth, but subtly different. * @param aAppShell a widget "appshell" (event processor) to associate * with the new window * @param aResult the newly created window is returned here. */ enum { SIZE_TO_CONTENT = -1 }; /* nsIXULWindow createTopLevelWindow (in nsIXULWindow aParent, in nsIURI aUrl, in PRUint32 aChromeMask, in long aInitialWidth, in long aInitialHeight, in nsIAppShell aAppShell); */ NS_IMETHOD CreateTopLevelWindow(nsIXULWindow *aParent, nsIURI *aUrl, PRUint32 aChromeMask, PRInt32 aInitialWidth, PRInt32 aInitialHeight, nsIAppShell *aAppShell, nsIXULWindow **_retval) = 0; /* [noscript] void createHiddenWindow (in nsIAppShell aAppShell); */ NS_IMETHOD CreateHiddenWindow(nsIAppShell *aAppShell) = 0; /* void destroyHiddenWindow (); */ NS_IMETHOD DestroyHiddenWindow(void) = 0; /** * Return the (singleton) application hidden window, automatically created * and maintained by this AppShellService. * @param aResult the hidden window. Do not unhide hidden window. * Do not taunt hidden window. */ /* readonly attribute nsIXULWindow hiddenWindow; */ NS_IMETHOD GetHiddenWindow(nsIXULWindow * *aHiddenWindow) = 0; /** * Return the (singleton) application hidden window, automatically created * and maintained by this AppShellService. * @param aResult the hidden window. Do not unhide hidden window. * Do not taunt hidden window. */ /* readonly attribute nsIDOMWindowInternal hiddenDOMWindow; */ NS_IMETHOD GetHiddenDOMWindow(nsIDOMWindowInternal * *aHiddenDOMWindow) = 0; /** * Return the (singleton) application hidden window as an nsIDOMWindowInternal, * and, the corresponding JavaScript context pointer. This is useful * if you'd like to subsequently call OpenDialog on the hidden window. * @aHiddenDOMWindow the hidden window QI'd to type nsIDOMWindowInternal * @aJSContext the corresponding JavaScript context */ /* [noscript] void getHiddenWindowAndJSContext (out nsIDOMWindowInternal aHiddenDOMWindow, out JSContext aJSContext); */ NS_IMETHOD GetHiddenWindowAndJSContext(nsIDOMWindowInternal **aHiddenDOMWindow, JSContext * *aJSContext) = 0; /** * Add a window to the application's registry of windows. These windows * are generally shown in the Windows taskbar, and the application * knows it can't quit until it's out of registered windows. * @param aWindow the window to register * @note When this method is successful, it fires the global notification * "xul-window-registered" */ /* void registerTopLevelWindow (in nsIXULWindow aWindow); */ NS_IMETHOD RegisterTopLevelWindow(nsIXULWindow *aWindow) = 0; /** * Remove a window from the application's window registry. Note that * this method won't automatically attempt to quit the app when * the last window is unregistered. For that, see Quit(). * @param aWindow you see the pattern */ /* void unregisterTopLevelWindow (in nsIXULWindow aWindow); */ NS_IMETHOD UnregisterTopLevelWindow(nsIXULWindow *aWindow) = 0; /** * The appshell service needs to be informed of modal XUL windows currently * open. Call this method as a window becomes modal or as it becomes * nonmodal. * @param aWindow no surprises here * @param aModal true if aWindow is becoming modal * false if aWindow is becoming nonmodal (or being closed) */ /* void topLevelWindowIsModal (in nsIXULWindow aWindow, in boolean aModal); */ NS_IMETHOD TopLevelWindowIsModal(nsIXULWindow *aWindow, PRBool aModal) = 0; }; /* Use this macro when declaring classes that implement this interface. */ #define NS_DECL_NSIAPPSHELLSERVICE \ NS_IMETHOD CreateTopLevelWindow(nsIXULWindow *aParent, nsIURI *aUrl, PRUint32 aChromeMask, PRInt32 aInitialWidth, PRInt32 aInitialHeight, nsIAppShell *aAppShell, nsIXULWindow **_retval); \ NS_IMETHOD CreateHiddenWindow(nsIAppShell *aAppShell); \ NS_IMETHOD DestroyHiddenWindow(void); \ NS_IMETHOD GetHiddenWindow(nsIXULWindow * *aHiddenWindow); \ NS_IMETHOD GetHiddenDOMWindow(nsIDOMWindowInternal * *aHiddenDOMWindow); \ NS_IMETHOD GetHiddenWindowAndJSContext(nsIDOMWindowInternal **aHiddenDOMWindow, JSContext * *aJSContext); \ NS_IMETHOD RegisterTopLevelWindow(nsIXULWindow *aWindow); \ NS_IMETHOD UnregisterTopLevelWindow(nsIXULWindow *aWindow); \ NS_IMETHOD TopLevelWindowIsModal(nsIXULWindow *aWindow, PRBool aModal); /* Use this macro to declare functions that forward the behavior of this interface to another object. */ #define NS_FORWARD_NSIAPPSHELLSERVICE(_to) \ NS_IMETHOD CreateTopLevelWindow(nsIXULWindow *aParent, nsIURI *aUrl, PRUint32 aChromeMask, PRInt32 aInitialWidth, PRInt32 aInitialHeight, nsIAppShell *aAppShell, nsIXULWindow **_retval) { return _to CreateTopLevelWindow(aParent, aUrl, aChromeMask, aInitialWidth, aInitialHeight, aAppShell, _retval); } \ NS_IMETHOD CreateHiddenWindow(nsIAppShell *aAppShell) { return _to CreateHiddenWindow(aAppShell); } \ NS_IMETHOD DestroyHiddenWindow(void) { return _to DestroyHiddenWindow(); } \ NS_IMETHOD GetHiddenWindow(nsIXULWindow * *aHiddenWindow) { return _to GetHiddenWindow(aHiddenWindow); } \ NS_IMETHOD GetHiddenDOMWindow(nsIDOMWindowInternal * *aHiddenDOMWindow) { return _to GetHiddenDOMWindow(aHiddenDOMWindow); } \ NS_IMETHOD GetHiddenWindowAndJSContext(nsIDOMWindowInternal **aHiddenDOMWindow, JSContext * *aJSContext) { return _to GetHiddenWindowAndJSContext(aHiddenDOMWindow, aJSContext); } \ NS_IMETHOD RegisterTopLevelWindow(nsIXULWindow *aWindow) { return _to RegisterTopLevelWindow(aWindow); } \ NS_IMETHOD UnregisterTopLevelWindow(nsIXULWindow *aWindow) { return _to UnregisterTopLevelWindow(aWindow); } \ NS_IMETHOD TopLevelWindowIsModal(nsIXULWindow *aWindow, PRBool aModal) { return _to TopLevelWindowIsModal(aWindow, aModal); } /* Use this macro to declare functions that forward the behavior of this interface to another object in a safe way. */ #define NS_FORWARD_SAFE_NSIAPPSHELLSERVICE(_to) \ NS_IMETHOD CreateTopLevelWindow(nsIXULWindow *aParent, nsIURI *aUrl, PRUint32 aChromeMask, PRInt32 aInitialWidth, PRInt32 aInitialHeight, nsIAppShell *aAppShell, nsIXULWindow **_retval) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateTopLevelWindow(aParent, aUrl, aChromeMask, aInitialWidth, aInitialHeight, aAppShell, _retval); } \ NS_IMETHOD CreateHiddenWindow(nsIAppShell *aAppShell) { return !_to ? NS_ERROR_NULL_POINTER : _to->CreateHiddenWindow(aAppShell); } \ NS_IMETHOD DestroyHiddenWindow(void) { return !_to ? NS_ERROR_NULL_POINTER : _to->DestroyHiddenWindow(); } \ NS_IMETHOD GetHiddenWindow(nsIXULWindow * *aHiddenWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHiddenWindow(aHiddenWindow); } \ NS_IMETHOD GetHiddenDOMWindow(nsIDOMWindowInternal * *aHiddenDOMWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHiddenDOMWindow(aHiddenDOMWindow); } \ NS_IMETHOD GetHiddenWindowAndJSContext(nsIDOMWindowInternal **aHiddenDOMWindow, JSContext * *aJSContext) { return !_to ? NS_ERROR_NULL_POINTER : _to->GetHiddenWindowAndJSContext(aHiddenDOMWindow, aJSContext); } \ NS_IMETHOD RegisterTopLevelWindow(nsIXULWindow *aWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->RegisterTopLevelWindow(aWindow); } \ NS_IMETHOD UnregisterTopLevelWindow(nsIXULWindow *aWindow) { return !_to ? NS_ERROR_NULL_POINTER : _to->UnregisterTopLevelWindow(aWindow); } \ NS_IMETHOD TopLevelWindowIsModal(nsIXULWindow *aWindow, PRBool aModal) { return !_to ? NS_ERROR_NULL_POINTER : _to->TopLevelWindowIsModal(aWindow, aModal); } #if 0 /* Use the code below as a template for the implementation class for this interface. */ /* Header file */ class nsAppShellService : public nsIAppShellService { public: NS_DECL_ISUPPORTS NS_DECL_NSIAPPSHELLSERVICE nsAppShellService(); private: ~nsAppShellService(); protected: /* additional members */ }; /* Implementation file */ NS_IMPL_ISUPPORTS1(nsAppShellService, nsIAppShellService) nsAppShellService::nsAppShellService() { /* member initializers and constructor code */ } nsAppShellService::~nsAppShellService() { /* destructor code */ } /* nsIXULWindow createTopLevelWindow (in nsIXULWindow aParent, in nsIURI aUrl, in PRUint32 aChromeMask, in long aInitialWidth, in long aInitialHeight, in nsIAppShell aAppShell); */ NS_IMETHODIMP nsAppShellService::CreateTopLevelWindow(nsIXULWindow *aParent, nsIURI *aUrl, PRUint32 aChromeMask, PRInt32 aInitialWidth, PRInt32 aInitialHeight, nsIAppShell *aAppShell, nsIXULWindow **_retval) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void createHiddenWindow (in nsIAppShell aAppShell); */ NS_IMETHODIMP nsAppShellService::CreateHiddenWindow(nsIAppShell *aAppShell) { return NS_ERROR_NOT_IMPLEMENTED; } /* void destroyHiddenWindow (); */ NS_IMETHODIMP nsAppShellService::DestroyHiddenWindow() { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIXULWindow hiddenWindow; */ NS_IMETHODIMP nsAppShellService::GetHiddenWindow(nsIXULWindow * *aHiddenWindow) { return NS_ERROR_NOT_IMPLEMENTED; } /* readonly attribute nsIDOMWindowInternal hiddenDOMWindow; */ NS_IMETHODIMP nsAppShellService::GetHiddenDOMWindow(nsIDOMWindowInternal * *aHiddenDOMWindow) { return NS_ERROR_NOT_IMPLEMENTED; } /* [noscript] void getHiddenWindowAndJSContext (out nsIDOMWindowInternal aHiddenDOMWindow, out JSContext aJSContext); */ NS_IMETHODIMP nsAppShellService::GetHiddenWindowAndJSContext(nsIDOMWindowInternal **aHiddenDOMWindow, JSContext * *aJSContext) { return NS_ERROR_NOT_IMPLEMENTED; } /* void registerTopLevelWindow (in nsIXULWindow aWindow); */ NS_IMETHODIMP nsAppShellService::RegisterTopLevelWindow(nsIXULWindow *aWindow) { return NS_ERROR_NOT_IMPLEMENTED; } /* void unregisterTopLevelWindow (in nsIXULWindow aWindow); */ NS_IMETHODIMP nsAppShellService::UnregisterTopLevelWindow(nsIXULWindow *aWindow) { return NS_ERROR_NOT_IMPLEMENTED; } /* void topLevelWindowIsModal (in nsIXULWindow aWindow, in boolean aModal); */ NS_IMETHODIMP nsAppShellService::TopLevelWindowIsModal(nsIXULWindow *aWindow, PRBool aModal) { return NS_ERROR_NOT_IMPLEMENTED; } /* End of implementation class template. */ #endif #endif /* __gen_nsIAppShellService_h__ */